/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #1d50e0;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #3d67db;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*
// kind of fixes the header jumping when a modal opens, but not quite
.modal-open {
  padding-right: 0 !important;
}
html {
  overflow-y: scroll !important;
}
*/

.glightbox-clean .gdesc-inner {
	padding: 0;
}

.glightbox-clean .gslide-title {
	margin-bottom: 0;
	background: #ccc;
}

span.recaptcha-branding {
	opacity: 0.7;
	font-size: 12px;
}

.navbar .dropdown-menu-right { 
    right: 0; 
    left: auto; 
}

select:invalid
{
	color: gray;
}

.modal-placeholder::placeholder {
	opacity: 0.7;
}

.small-placeholder::placeholder {
	opacity: 0.7;
	font-size: 14px;
}

.modal-footer > span {
	margin-right: auto;
	margin-left: auto;
}

a.label-tooltip, a.label-tooltip:hover {
	text-decoration: underline dotted var(--bs-modal-color);
	color: var(--bs-modal-color);
}

select.small-select {
	font-size: small;
	padding: 0.125rem 2rem 0.125rem 0.5rem;
	width: auto;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  background: linear-gradient(45deg, #1d50e0, #2ea7e4);
  color: #fff;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
  visibility: hidden;
  opacity: 0;
  width: 64px;
  height: 34px;
}

.back-to-top i {
  line-height: 0;
  font-size: 20px;
}

.back-to-top:focus {
  background: linear-gradient(45deg, #1d50e0, #2ea7e4);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
//  background: #1d50e0;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: linear-gradient(45deg, #1d50e0, #2ea7e4);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: linear-gradient(45deg, #1d50e0, #2ea7e4);
  height: 70px;
  transition: all 0.5s;
}

#header #logo h1 {
  font-size: 36px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }

  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 16px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  padding: 0 2px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a,
.navbar a:hover,
.navbar a:visited,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #333333;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #1d50e0;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 1000px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  width: 250px;
  height: 500px;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:visited,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1d50e0;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #1d50e0;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, rgba(19, 70, 214, 0.8), rgba(26, 147, 208, 0.8)), url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 1025px) {
  #intro {
    background-attachment: fixed;
  }
}

@media (max-height: 640px) {
  #intro {
    height: 120vh;
  }
}

#intro .intro-text {
  position: absolute;
  left: 0;
  top: 60px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#intro h2 {
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
  text-shadow: 
    1px 0 0 #666, /*right */
    0 1px 0 #666, /*top */
    -1px 0 0 #666, /*left */
    0 -1px 0 #666; /*bottom */}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
    line-height: 36px;
	margin-top: 50px;
  }
}

#intro p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 24px;
  text-shadow: 
    1px 0 0 #666, /*right */
    0 1px 0 #666, /*top */
    -1px 0 0 #666, /*left */
    0 -1px 0 #666; /*bottom */
}

@media (max-width: 768px) {
  #intro p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

@media (max-width: 768px) {
  #intro .btn-get-started {
	  margin-bottom: 20px;
  }
}

#intro .btn-get-started:hover {
  color: #1d50e0;
  background: #fff;
}

#intro .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#intro .product-screens img {
  box-shadow: 0px -2px 19px 4px rgba(0, 0, 0, 0.29);
}

#intro .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% + 54px);
  bottom: 0;
  top: 30px;
}

#intro .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  top: 90px;
}

#intro .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 374px);
  bottom: 0;
  top: 150px;
}

@media (max-width: 767px) {
  #intro .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }

  #intro .product-screens .product-screen-2,
  #intro .product-screens .product-screen-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 400;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #777;
  font-style: italic;
}

.section-header .section-description.form-section {
  padding-bottom: 20px;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #1d50e0;
  background: linear-gradient(0deg, #2ea7e4 0%, #1d50e0 100%);
  margin: 0 auto;
  margin-bottom: 20px;
}

.section-header .section-body {
  font-style: none;
  color: #000;
  padding-bottom: 20px;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #eff5f5;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 92px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#about .about-img {
  text-align: center;
  overflow: hidden;
}

#about .about-img img {
  max-width: 95%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content .h2 {
  color: #333;
  font-weight: 300;
  font-size: 24px;
}

#about .content h3 {
  color: #777;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #1d50e0;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}

#about .section-header img {
	height: 48px;
	width: auto;
}


#about_title {
	vertical-align: bottom;
}

/* Product Featuress Section
--------------------------------*/
#features {
  background: #fff;
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#features .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
}

#features .box {
  margin-bottom: 15px;
  text-align: center;
}

#features .icon {
  margin-bottom: 10px;
}

#features .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#features .icon i:before {
  background: #1d50e0;
  background: linear-gradient(45deg, #2ea7e4 0%, #1d50e0 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features .title {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 22px;
}

#features .title a {
  color: #111;
}

#features .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

#features .section-description {
  padding-bottom: 10px;
}

/* Product Advanced Featuress Section
--------------------------------*/
#advanced-features {
  overflow: hidden;
}

#advanced-features .features-row {
  padding: 60px 0 30px 0;
}

#advanced-features h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#advanced-features p {
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

#advanced-features i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#advanced-features i:before {
  background: #1d50e0;
  background: linear-gradient(45deg, #2ea7e4 0%, #1d50e0 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

#advanced-features .features-row ul {
  list-style: none;
  padding: 0;
}

#advanced-features .features-row ul li {
  padding-bottom: 6px;
}

/* Buy Now Section
--------------------------------*/
#buynow {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#buynow .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

#buynow h3 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 28px;
}

#buynow h4 {
  font-size: 46px;
  color: #1d50e0;
  font-weight: 400;
  margin-bottom: 6px;
}

#buynow h4 sup {
  font-size: 20px;
  top: -20px;
}

#buynow h4 span.purchase-currency {
  color: #bababa;
  font-size: 20px;
}

#buynow ul {
	color: #999;
	text-align: left;
	list-style-position: outside;
	list-style: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%231d50e0" class="bi bi-check-circle" viewBox="0 0 16 16"> <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/> <path d="m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05"/> </svg>');
	margin-top: 14px;
}

#buynow ul li {
	margin-bottom: 4px;
	vertical-align: middle;
}

#buynow ul li>span {
	position: relative;
	top: -2px;
}

#buynow .get-started-btn {
  background: #515e61;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

#buynow .box {
  border: 2px solid #fff;
}
	
#buynow .featured {
  border: 2px solid #1d50e0;
}

@media (max-width: 768px) {
	nav.buy-tabs {
	  margin-bottom: 20px;
	}
}

.currency-note {
	font-size: 14px;
	font-weight: 400;
	color: #777;
}

/* Download Section
--------------------------------*/
#download {
  padding: 60px 0;
  overflow: hidden;
}

#download p {
	margin-bottom: 20px;
}

#download .dl-link {
	text-align: center;
}

#download .dl-link h3 {
	margin-bottom: 0;
	font-size: 2rem;
}

#download .dl-link a {
	color: #1d50e0;
}

#download .dl_size {
	opacity: 0.5;
}

#download .dl-ver {
	opacity: 0.75;
	font-size: 14px;
}

#download .content p {
  margin-top: 30px;
  line-height: 26px;
  text-align: center;
}

#download .content p:last-child {
  margin-bottom: 0;
}

#download .dl-eval :is(a, a:hover, a:visited, a:focus) {
  color: #000;
  outline: none;
  text-decoration: none;
}

.modal-header button.close
{
  outline: none;
  color: #000;
  background-color: transparent;
  border-style: none;
}

#modal-eval form label,
#modal-eval form input {
	display: block;
}

#modal-eval form label.separate {
	margin-top: 20px;
}

label {
	margin-bottom: 2px;
}

div.free-trial {
	margin-top: 20px;
	color: #777;
	font-size: 16px;
	opacity: .8;
}

div.modal-subtitle {
	font-size: 14px;
	margin-top: 10px;
}

div.modal-subtitle-pill {
	margin-top: 10px;
	font-size: 20px;
	margin-bottom: 10px;
}

p.payment-title-gst-note {
	margin-bottom: 0px;
	font-size: 12px;
}

#payment-confirm-header-upgrade {
	text-align: center;
	padding-bottom: 10px;
}

p.purchase-gst-note, span.purchase-gst-note {
	font-size: 12px;
	opacity: 0.8;
	margin-bottom: 0;
}

/* Gallery Section
--------------------------------*/
#gallery {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#gallery .container-fluid {
  padding: 0px;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 1px;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#gallery .gallery-item:hover img {
  transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1d50e0;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

.social svg {
  float: left;
  border-radius: 50%;
  border: 2px solid #1d50e0;
  width: 36px;
  height: 36px;
  padding: 4px 4px;
}

.social svg path {
  fill: #1d50e0;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #1d50e0;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 42px;
  line-height: 22px;
  font-size: 14px;
  margin-block-end: 4px;
}

#contact .info a {
	color: #333333;
	font-weight: 600;
}

.infohead {
	font-size: 16px;
}

.infotext {
	font-weight: 600;
}	

div.contact-about-acn {
	text-align: right;
	font-size: 12px;
	font-family: "Montserrat", sans-serif;
	color: #888;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #1d50e0;
}

/*--------------------------------------------------------------
# Wait
--------------------------------------------------------------*/
#wait
{
	display:none;
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(255,255,255,0.8);
	z-index:1000;
}

#waitcontent
{
	display:table;
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
}

#waitspinner
{
	display: table-cell;
	vertical-align:middle;
	width: 100%;
	text-align: center;
	font-size:larger;
	padding-top:80px;
}

#waitspinner span
{
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 300;
	color: #000;
}


/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/

.consistent-height .tab-content {
  display: flex;
}

.consistent-height .tab-content > .tab-pane {
  display: block; /* undo "display: none;" */
  visibility: hidden;
  margin-right: -100%;
  width: 100%;
}

.consistent-height .tab-content > .active {
  visibility: visible;
}

div.tab-pane * > h3.section-title {
	margin-top: 10px;
}

/*--------------------------------------------------------------
# Purchase & Upgrades
--------------------------------------------------------------*/

.contains-busy {
	position: relative;
}

span.contains-busy {
	display: inline-block;
	width: 100%;
}

.contains-busy > span {
	position: absolute;
	right: 20px;
	top: 50%;
	opacity: 0.5;
}

.contains-busy > input {
	padding-right: 40px;
}

#upgrade-cur-status p {
	text-align: right;
	margin-top: 2px;
}

span.change-email p {
	text-align: right;
	margin-top: 2px;
}

h6.upgrade-licence-title {
	margin-bottom: 4px;
	color: #666666;
	font-family: "Open Sans", sans serif;
	font-size: 16px;
}

span.upgrade-licence-title {
	color: #000000;
	font-family: "Open Sans", sans serif;
	font-size: 16px;
}

.upgrade-licence-group .form-check {
	padding-left: 0;
}

.upgrade-licence-group .form-check-inline {
	margin-right: 4px;
}

.upgrade-licence-radio h5 {
	margin-bottom: 0;
}

label.upgrade-licence-radio {
	min-width: 120px;
}

.upgrade-licence-price {
	margin-bottom: 0;
	font-size: 14px;
	width: 8em;
}
	
.upgrade-licence-tax {
	font-size: 12px;
	font-style: italic;
	opacity: 0.8;
	margin-bottom: 0;
}

.upgrade-notes {
	font-size: 14px;
	font-style: italic;
	margin-top: 18px;
	position: relative;
	left: -20px;
}

.regcode {
	font-family: monospace;
	background: #aac9f3;
	padding: 4px 8px 4px 8px;
}

/* Payment modals */

.inline-form-elements > * {
	margin: 8px 0 0 8px;
}

.inline-form-elements {
	display: flex;
	margin: -8px 0 0 -8px;
	align-items: center;
}

.payment-coupon-container {
	width: 100%;
}

.paybycard {
	height: 45px;
	width: 100%;
	margin-bottom: 8px;
}

.payment-options-note {
	opacity: 0.7;
	font-size: small;
}

.payment-options-header {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 2px;
}

#payment-buy-postcode-container {
	margin-top: -26px;
	padding-bottom: 8px;
}

.payment-options-group {
	margin-top: 4px;
}

#payment-discount-buy-reveal-div {
	margin-bottom: 8px;
}

#payment-options-invoice-upgrade-reveal-div {
	margin-bottom: 8px;
	margin-top: 0px;
}

select.country-select:invalid {
	color: var(--bs-secondary-color);
	opacity: 0.7;
}

/* Upgrade modal */

#payment-discount-upgrade-reveal-div {
	margin-bottom: 8px;
}

#payment-errors-upgrade {
	margin-bottom: 16px;
}

/* Manual payment */

#payment-discount-manual {
	margin-bottom: 16px;
}

#payment-errors-manual {
	margin-bottom: 16px;
}

.coupon-reveal {
	text-align: right;
	font-size: 14px;
	margin-bottom: 4px;
}

.coupon-reveal a,
.coupon-reveal a:hover,
.coupon-reveal a:active,
.coupon-reveal a:focus
{
	color: #333333;
	outline: none;
	text-decoration: underline;
	text-decoration-thickness: 1px;
}


/* GOLP */

.golp-table {
	font-size: 14px;
	border: 1px solid rgba(192, 192, 192, .5);
	
}

.golp-table th, .golp-table td {
	padding: 1px 8px 1px 1px;
	text-align: right;
}

.golp-list li {
	color: #777;
	text-align: left;
	list-style-position: outside;
	list-style: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right-short" viewBox="0 -2 16 16"><path fill-rule="evenodd" d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8"/> </svg>');
	margin-top: 4px;
}


/* upgrade email field */

.fake-placeholder {
	position: relative;
}

.fake-placeholder label {
	position: absolute;
	top: 8px;
	right: 8px;
	pointer-events: none;
	color: red;
	background-color: white;
	opacity: 0.7;
}

div.select-icon {
	position: relative;
}

select.select-icon {
	background-image: none;
}

span.select-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -2 16 16'%3e%3cpath fill='none' stroke='%23212529bf' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	margin: auto;
	height: 16px;
	width: 16px;
	top: 12px;
	right: 12px;
	opacity: 0.7;
	pointer-events: none; 
}

.modal-body
{
	padding: 8px 12px 8px 12px;
}

.sale-terms-conditions a,
.sale-terms-conditions a:hover,
.sale-terms-conditions a:visited,
.sale-terms-conditions a:focus
{
  color: var(--bs-modal-color),
  outline: none;
  text-decoration: none;
}


/* renew */

ul.renew-list {
	margin-top: 0px !important;
	margin-bottom: 3rem;
}
	
.renew-list li {
	color: #777;
	text-align: left;
	list-style-position: outside;
	list-style: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right-short" viewBox="0 -2 16 16"><path fill-rule="evenodd" d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8"/> </svg>');
	margin-top: 4px;
}

p.renew-button {
	margin-top: 10px;
	margin-bottom: 10px;
}

span.renew-discount {
	font-size: 14px;
	opacity: 0.8;
}
